home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 1 / CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso / Aminet / biz / demo / StylusDemo.lha / Stylus_Demo / REXX / ProVector.pvrx < prev    next >
Text File  |  1995-05-03  |  2KB  |  66 lines

  1. /***************************************************************************
  2. *                                                                          *
  3. *  $VER: ProVector.pvrx 3.0 (03.May.95)                                    *
  4. *  Copyright © 1989-95 by Stylus, Inc.                                     *
  5. *                                                                          *
  6. *   ProVector looks for this macro at startup to configure Ctrl-Keys,      *
  7. *   RX tools, ETC.                                                         *
  8. *                                                                          *
  9. *                                                                          *
  10. ***************************************************************************/
  11.  
  12.  
  13. /*
  14. SIGNAL ON ERROR
  15. TRACE BACKGROUND
  16. */
  17.  
  18. /*
  19. Define control-key combinations to call macros.  The following Control
  20. keys may not be used:
  21.    Ctrl-H = BackSpace
  22.    Ctrl-J = LineFeed
  23.    Ctrl-M = CR
  24.    Ctrl-] = Escape
  25. */
  26.  
  27. 'DefineKey C "Center Both"'
  28. 'DefineKey E "MovePts MENU"'    /* "E" for "Edit"     */
  29. 'DefineKey F ToggleFastEdit'
  30. 'DefineKey L LayerSel'
  31. 'DefineKey N SelectNOT'
  32. 'DefineKey R ToggleRulers'
  33. 'DefineKey S Status'
  34. 'DefineKey T ToggleToolsStay'
  35. 'DefineKey Z ZoomSel'
  36.  
  37. /* Define the Rx Tool */
  38. 'RxDefine ToggleView'
  39.  
  40. /* Define some menus for the Ctrl-Keys */
  41. 'Define "Center        Ctrl-C" Center'
  42. 'Define "CropMarks           " "CropMarks MENU"'
  43. 'Define "CutPath             " "CutPath MENU"'
  44. 'Define "JoinPaths           " "JoinPaths MENU"'
  45. 'Define "LayerSel            " LayerSel'
  46. 'Define "LockObj             " "LockObj MENU"'
  47. 'Define "MovePts       Ctrl-E" "MovePts MENU"'
  48. 'Define "Randomize           " "Random"'
  49. 'Define "RoundRect     Ctrl-R" "RoundRect MENU"'
  50. 'Define "SelectNOT     Ctrl-N" SelectNOT'
  51. 'Define "ShowCharSet         " ShowCharSet'
  52. 'Define "ShowMag             " ShowMag'
  53. 'Define "Status        Ctrl-S" Status'
  54. 'Define "ZoomNonProp         " ZoomNonProp'
  55. 'Define "ZoomSel       Ctrl-Z" ZoomSel'
  56.  
  57.  
  58. ERROR:
  59. /* At startup ProVector LOCK's screen upon detection of
  60.     "REXX:ProVector.pvrx." Thus this last command is
  61.     required. */
  62. 'UnLock'
  63.  
  64.  
  65. EXIT
  66.